* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FBF7ED;
  color: #2FCEC3;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.logo {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  color: #2FCEC3;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.6;
}

.intro {
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: #fbf7f7;
}

.intro h1 {
  font-size: 6rem;         
  font-weight: 900;        
  letter-spacing: -2px;    
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeUp 1s ease forwards;
}

.intro p {
  font-size: 1.5rem;      
  font-weight: 400;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeUp 1.5s ease forwards;
}

.team-section {
  padding: 5rem 2rem;
  background: #f1ebddef;
  border-top: 1px solid #eee;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .intro h1 {
    font-size: 3.5rem;
  }
  .intro p {
    font-size: 1.1rem;
  }
}


.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  list-style: none;
}


.team-member {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.member-image-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.member-image-container img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  height: 280px; 
}

.add-button {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.add-button:hover {
  background: #555;
}


.member-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-align: center;
}

.member-role {
  font-size: 0.813rem;
  color: #666;
  text-align: center;
}

footer {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin: 3.125rem auto 1.25rem;
    max-width: 43.75rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .member-image-container img {
    height: 220px;
  }
}